home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 3 / Gold Medal Software - Volume 3 (Gold Medal) (1994).iso / os2 / printmon.arj / MAKEFILE < prev    next >
Text File  |  1994-02-25  |  349b  |  25 lines

  1. # Makefile for printmon
  2. # Copyright (C) 1993 Kai Uwe Rommel <rommel@ars.muc.de>
  3. # $Header$
  4. # $Log$
  5.  
  6. CC = gcc -Zomf -Zmtd -O -s
  7. O = .obj
  8. A = .lib
  9.  
  10. CFLAGS = -I.
  11.  
  12. OBJS = printmon$O
  13. LIBS = 
  14.  
  15. .SUFFIXES: .c $O
  16.  
  17. .c$O:
  18.     $(CC) $(CFLAGS) -c $<
  19.  
  20. printmon.exe: $(OBJS) $(LIBS)
  21.     $(CC) -o $@ $(OBJS) $(LIBS)
  22.  
  23. clean:
  24.     rm -f $(OBJS) $(LIBS)
  25.